d1cd1f
@@ -482,7 +482,9 @@
public ReporterTask(Reporter rp) {
     
     @Override
     public void run() {
-      rp.progress();
+      if (rp != null) {
+        rp.progress();
+      }
     }
   }
 }
